home *** CD-ROM | disk | FTP | other *** search
/ PC World Komputer 2007 December / PCWKCD1207B.iso / Blogowanie poza sfera / Flock 1.0 beta / flock-1.0RC3.en-US.win32.exe / flock / components / nsURLFormatter.js < prev    next >
Text File  |  2007-10-18  |  6KB  |  180 lines

  1. /* ***** BEGIN LICENSE BLOCK *****
  2.  * Version: MPL 1.1/GPL 2.0/LGPL 2.1
  3.  *
  4.  * The contents of this file are subject to the Mozilla Public License Version
  5.  * 1.1 (the "License"); you may not use this file except in compliance with
  6.  * the License. You may obtain a copy of the License at
  7.  * http://www.mozilla.org/MPL/
  8.  *
  9.  * Software distributed under the License is distributed on an "AS IS" basis,
  10.  * WITHOUT WARRANTY OF ANY KIND, either express or implied. See the License
  11.  * for the specific language governing rights and limitations under the
  12.  * License.
  13.  *
  14.  * The Original Code is the nsURLFormatterService.
  15.  *
  16.  * The Initial Developer of the Original Code is
  17.  * Axel Hecht <axel@mozilla.com>
  18.  * Portions created by the Initial Developer are Copyright (C) 2006
  19.  * the Initial Developer. All Rights Reserved.
  20.  *
  21.  * Contributor(s):
  22.  *   Dietrich Ayala <dietrich@mozilla.com>
  23.  *
  24.  * Alternatively, the contents of this file may be used under the terms of
  25.  * either the GNU General Public License Version 2 or later (the "GPL"), or
  26.  * the GNU Lesser General Public License Version 2.1 or later (the "LGPL"),
  27.  * in which case the provisions of the GPL or the LGPL are applicable instead
  28.  * of those above. If you wish to allow use of your version of this file only
  29.  * under the terms of either the GPL or the LGPL, and not to allow others to
  30.  * use your version of this file under the terms of the MPL, indicate your
  31.  * decision by deleting the provisions above and replace them with the notice
  32.  * and other provisions required by the GPL or the LGPL. If you do not delete
  33.  * the provisions above, a recipient may use your version of this file under
  34.  * the terms of any one of the MPL, the GPL or the LGPL.
  35.  *
  36.  * ***** END LICENSE BLOCK ***** */
  37.  
  38. /**
  39.  * @class nsURLFormatterService
  40.  *
  41.  * nsURLFormatterService exposes methods to substitute variables in URL formats.
  42.  *
  43.  * Mozilla Applications linking to Mozilla websites are strongly encouraged to use
  44.  * URLs of the following format:
  45.  *
  46.  *   http[s]://%LOCALE%.%SERVICE%.mozilla.[com|org]/%LOCALE%/
  47.  */
  48.  
  49. /**
  50.  * constants
  51.  */
  52.  
  53. const Cc = Components.classes;
  54. const Ci = Components.interfaces;
  55. const Cr = Components.results;
  56.  
  57. const CID =         Components.ID("{e6156350-2be8-11db-a98b-0800200c9a66}");
  58. const CONTRACT_ID = "@mozilla.org/toolkit/URLFormatterService;1";
  59. const CLASS_NAME =  "Application URL Formatter Service";
  60.  
  61.  
  62. /**
  63.  * class definition
  64.  */
  65.  
  66. function nsURLFormatterService() {
  67. }
  68.  
  69. nsURLFormatterService.prototype = {
  70.  
  71.   /**
  72.    * Built-in values
  73.    */
  74.   _defaults: {
  75.  
  76.     get appInfo() {
  77.       if (!this._appInfo)
  78.         this._appInfo = Cc["@mozilla.org/xre/app-info;1"].getService(Ci.nsIXULAppInfo);
  79.       return this._appInfo;
  80.     }, 
  81.  
  82.     LOCALE: function() {
  83.       var chromereg = Cc["@mozilla.org/chrome/chrome-registry;1"].
  84.                       getService(Ci.nsIXULChromeRegistry);
  85.       return chromereg.getSelectedLocale('global');
  86.     },
  87.     VENDOR:           function() { return this.appInfo.vendor; },
  88.     NAME:             function() { return this.appInfo.name; },
  89.     ID:               function() { return this.appInfo.ID; },
  90.     VERSION:          function() { return this.appInfo.version; },
  91.     APPBUILDID:       function() { return this.appInfo.appBuildID; },
  92.     PLATFORMVERSION:  function() { return this.appInfo.platformVersion; },
  93.     PLATFORMBUILDID:  function() { return this.appInfo.platformBuildID; },
  94.     APP:              function() { return this.appInfo.name.toLowerCase().replace(/ /, ""); }
  95.   },
  96.  
  97.   /**
  98.    * nsIURLFormatter.formatURL
  99.    */
  100.   formatURL: function uf_formatURL(aFormat) {
  101.     var _this = this;
  102.     var replacementCallback = function(aMatch, aKey) {
  103.       if (aKey in _this._defaults) // supported defaults
  104.         return _this._defaults[aKey]();
  105.       Components.utils.reportError("formatURL: Couldn't find value for key: " + aKey);
  106.       return '';
  107.     }
  108.     return aFormat.replace(/%([A-Z]+)%/gi, replacementCallback);
  109.   },
  110.  
  111.   /**
  112.    * nsIURLFormatter.formatURLPref
  113.    */
  114.   formatURLPref: function uf_formatURLPref(aPref) {
  115.     var format = null;
  116.     var PS = Cc['@mozilla.org/preferences-service;1'].
  117.              getService(Ci.nsIPrefBranch);
  118.  
  119.     try {
  120.       format = PS.getComplexValue(aPref, Ci.nsIPrefLocalizedString).data;
  121.     } catch(ex) {}
  122.  
  123.     if (!format) {
  124.       try {
  125.         format = PS.getComplexValue(aPref, Ci.nsISupportsString).data;
  126.       } catch(ex) {
  127.         Components.utils.reportError("formatURLPref: Couldn't get pref: " + aPref);
  128.         return "about:blank";
  129.       }
  130.     }
  131.  
  132.     return this.formatURL(format);
  133.   },
  134.  
  135.   QueryInterface: function uf_QueryInterface(aIID) {
  136.     if (!aIID.equals(Ci.nsIURLFormatter) &&    
  137.         !aIID.equals(Ci.nsISupports))
  138.       throw Cr.NS_ERROR_NO_INTERFACE;
  139.     return this;
  140.   }
  141. };
  142.  
  143. /**
  144.  * XPCOM Registration, etc
  145.  */
  146. var nsURLFormatterFactory = {
  147.   createInstance: function (aOuter, aIID) {
  148.     if (aOuter != null)
  149.       throw Cr.NS_ERROR_NO_AGGREGATION;
  150.     return (new nsURLFormatterService()).QueryInterface(aIID);
  151.   }
  152. };
  153.  
  154. var nsURLFormatterModule = {
  155.   registerSelf: function(aCompMgr, aFileSpec, aLocation, aType) {
  156.     aCompMgr = aCompMgr.QueryInterface(Ci.nsIComponentRegistrar);
  157.     aCompMgr.registerFactoryLocation(CID, CLASS_NAME, 
  158.         CONTRACT_ID, aFileSpec, aLocation, aType);
  159.   },
  160.  
  161.   unregisterSelf: function(aCompMgr, aLocation, aType) {
  162.     aCompMgr = aCompMgr.QueryInterface(Cinterfaces.nsIComponentRegistrar);
  163.     aCompMgr.unregisterFactoryLocation(CID, aLocation);        
  164.   },
  165.   
  166.   getClassObject: function(aCompMgr, aCID, aIID) {
  167.     if (!aIID.equals(Ci.nsIFactory))
  168.       throw Cr.NS_ERROR_NOT_IMPLEMENTED;
  169.  
  170.     if (aCID.equals(CID))
  171.       return nsURLFormatterFactory;
  172.  
  173.     throw Cr.NS_ERROR_NO_INTERFACE;
  174.   },
  175.  
  176.   canUnload: function(aCompMgr) { return true; }
  177. };
  178.  
  179. function NSGetModule(aCompMgr, aFileSpec) { return nsURLFormatterModule; }
  180.